2558b23b95ebdbdee41df9c4c6c43f92f83a5335,src/main/java/com/thevoxelbox/voxelsniper/brush/LineBrush.java,LineBrush,parameters,#String[]#SnipeData#,53

Before Change


    @Override
    public final void parameters(final String[] par, final SnipeData v) {
        if (par.length == 0 || par[0].equalsIgnoreCase("info")) {
            v.sendMessage(TextColors.GOLD,
                    "Line Brush instructions: Right click first point with the arrow. Right click with powder to draw a line to set the second point.");
        }
    }
    // @Spongify

After Change


    @Override
    public final void parameters(final String[] par, final SnipeData v) {
        if (par.length == 0 || par[0].equalsIgnoreCase("info")) {
            v.sendMessage(TextColors.GOLD,
                    "Line Brush instructions: Right click first point with the arrow. Right click with powder to draw a line to set the second point.");
            v.sendMessage(TextColors.GOLD + "Line brush Parameters:");
            v.sendMessage(TextColors.AQUA + "/b line continue -- Each line will be drawn from the endpoint of the last line.");
            return;
        }
        this.continuous = false;
        if (par[0].equalsIgnoreCase("continue")) {
            this.continuous = true;
            v.sendMessage(TextColors.AQUA, "Line brush Continuous mode enabled.");
        }
    }